@charset "UTF-8";
html {
  font-size: 16px;
}

* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
  font-family: "Courier New", DotGothic16, monospace;
  font-style: italic;
}

body {
  margin: 0;
  padding: 0;
  background: hsl(0, 0%, 100%);
  align-items: center;
  justify-content: flex-start;
  scroll-behavior: smooth;
}

/* ruler */
.ruler {
  position: fixed;
  left: 50%;
  transform: translateX(-50%); /* 가운데 고정 */
  display: flex;
  justify-content: space-between;
  width: 100%; /* 원하는 전체 너비 */
  max-width: 90vw; /* 너무 커지지 않게 제한 */
  padding: 0, 10px;
}

.ruler-top span {
  height: 0.6rem;
  width: 0px;
  background: #000000;
}

.ruler-bottom span {
  height: 0.6rem;
  width: 2px;
  background: #000000;
}

.ruler-top {
  top: 0;
}

.ruler-bottom {
  bottom: 0;
}

/* 왼쪽 로고 */
.logo {
  position: fixed;
  top: 50%;
  left: 100px;
  width: 160px;
  height: auto;
  opacity: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.img01 {
  position: fixed;
  top: 70%;
  right: 140px;
  transform: translateY(-50%);
  width: 132px;
  height: auto;
  opacity: 60%;
  border: 0.7px solid #000;
  border-radius: 3%;
}

.img02 {
  position: fixed;
  top: 40%;
  right: 250px;
  transform: translateY(-50%);
  width: 136px;
  height: auto;
  opacity: 70%;
  border: 0.7px solid #000;
  border-radius: 3%;
}

.year-nav {
  position: fixed;
  top: 50%;
  right: 180px;
  transform: translateY(-50%);
  text-align: right;
  -webkit-text-decoration: latri;
          text-decoration: latri;
}

.year-nav a {
  display: block;
  margin: 5px 0;
  text-decoration: none;
  color: rgb(0, 0, 0);
  font-size: 18px;
}

.year-nav a:hover {
  font-weight: bold;
}

.year-nav a.active {
  font-weight: bold;
}

/* 사진 섹션 */
.photo-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.photo-section img {
  max-height: 70vh;
  max-width: 50vw;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 30px auto;
  display: block;
}

/* Mobile - Landscape */
@media screen and (min-width: 0px) {
  .img01 {
    display: none;
  }
  .img02 {
    display: none;
  }
  .year-nav {
    top: 50%;
    right: 10px;
  }
  .year-nav a {
    font-size: 12px;
  }
  .logo {
    top: 50%;
    left: 12px;
    width: 40px;
  }
  .ruler-bottom span {
    height: 0.4rem;
    width: 1.2px;
  }
}
@media screen and (min-width: 400px) {
  .img01 {
    display: flex;
    top: 70%;
    right: 20px;
    width: 60px;
  }
  .img02 {
    display: flex;
    top: 20%;
    right: 60px;
    width: 80px;
  }
  .year-nav {
    top: 50%;
    right: 40px;
  }
  .year-nav a {
    font-size: 14px;
  }
  .logo {
    top: 50%;
    left: 12px;
    width: 70px;
  }
  .ruler-bottom span {
    height: 0.4rem;
    width: 1.2px;
  }
}
@media screen and (min-width: 500px) {
  .img01 {
    top: 60%;
    right: 20px;
    width: 60px;
  }
  .img02 {
    top: 20%;
    right: 80px;
    width: 80px;
  }
  .year-nav {
    top: 50%;
    right: 70px;
  }
  .year-nav a {
    font-size: 16px;
  }
  .logo {
    top: 50%;
    left: 20px;
    width: 90px;
  }
  .ruler-bottom span {
    height: 0.6rem;
    width: 1.5px;
  }
}
@media screen and (min-width: 545px) {
  .img01 {
    top: 70%;
    right: 20px;
    width: 60px;
  }
  .img02 {
    top: 20%;
    right: 80px;
    width: 80px;
  }
  .year-nav {
    top: 50%;
    right: 70px;
  }
  .logo {
    top: 50%;
    left: 20px;
    width: 90px;
  }
  .ruler-bottom span {
    height: 0.6rem;
    width: 1.5px;
  }
}
@media screen and (min-width: 615px) {
  .img01 {
    top: 70%;
    right: 50px;
    width: 90px;
  }
  .img02 {
    top: 30%;
    right: 120px;
    width: 100px;
  }
  .year-nav {
    top: 50%;
    right: 90px;
  }
  .logo {
    top: 50%;
    left: 30px;
    width: 90px;
  }
  .ruler-bottom span {
    height: 0.6rem;
    width: 2px;
  }
}
@media screen and (min-width: 768px) {
  .img01 {
    top: 70%;
    right: 60px;
    width: 112px;
  }
  .img02 {
    top: 30%;
    right: 180px;
    width: 100px;
  }
  .year-nav {
    top: 50%;
    right: 120px;
  }
  .logo {
    top: 50%;
    left: 30px;
    width: 120px;
  }
}
@media screen and (min-width: 921px) {
  .img01 {
    top: 70%;
    right: 120px;
    width: 112px;
  }
  .img02 {
    top: 35%;
    right: 220px;
    width: 116px;
  }
  .year-nav {
    top: 50%;
    right: 180px;
  }
  .logo {
    top: 50%;
    left: 80px;
    width: 140px;
  }
}
@media screen and (min-width: 1049px) {
  .img01 {
    top: 70%;
    right: 120px;
    width: 112px;
  }
  .img02 {
    top: 35%;
    right: 190px;
    width: 116px;
  }
  .year-nav {
    top: 50%;
    right: 180px;
  }
  .logo {
    top: 50%;
    left: 80px;
    width: 140px;
  }
}
@media screen and (min-width: 1200px) {
  .logo {
    top: 50%;
    left: 100px;
    width: 160px;
  }
  .img01 {
    top: 70%;
    right: 140px;
    width: 132px;
  }
  .img02 {
    top: 40%;
    right: 250px;
    width: 136px;
  }
  .year-nav {
    top: 50%;
    right: 180px;
  }
}/*# sourceMappingURL=photo.css.map */